home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / FI.ZIP / README.TXT < prev   
Encoding:
Text File  |  1995-08-15  |  2.3 KB  |  61 lines

  1. INTRODUCTION:
  2.     This is a pair of C++ classes used to find files in a directory or
  3. subdirectory tree. The first class, FileIterator, iterates through ALL
  4. files in a directory, with the option of searching through any
  5. subdirectories. For each file found, the class user can determine the
  6. full path name of the file and/or its size.
  7.     The FullFileIterator class inherits FileIterator. It allows a
  8. refined search, including such factors as:
  9.  
  10.         a) Whether a file is archived,
  11.         b) Whether a file is hidden,
  12.         c) Whether a file is read-only,
  13.         d) Whether a file is a system file,
  14.         e) How a file compares to a given date, and
  15.         f) How a file compares to a given time.
  16.  
  17.  
  18. INCLUDED FILES:
  19.     fi.cfg           - Windows .EXE compiler configuration
  20.     fidll.cfg        - Windows .DLL compiler configuration
  21.     fidos.cfg        - DOS compiler configuration
  22.     file_itr.h       - FileIterator class header.
  23.     fi_full.h        - FullFileIterator class header.
  24.     fi.lib           - FileIterator & FullFileIterator classes library
  25.                     (Windows .EXE version).
  26.     fidll.lib           - FileIterator & FullFileIterator classes library
  27.                     (Windows .DLL version).
  28.     fidos.lib           - FileIterator & FullFileIterator classes library
  29.                     (DOS version).
  30.     fi.doc          - FileIterator class library documentation. (Word
  31.                     for Windows, vers. 2 file)
  32.     fifull.doc      - FullFileIterator class library documentation.
  33.                     (Word for Windows, vers. 2 file)
  34.     fi.rtf          - FileIterator class library documentation. (Rich
  35.                     Text Format file)
  36.     fifull.rtf      - FullFileIterator class library documentation.
  37.                     (Rich Text Format file)
  38.     readme.txt       - This file.
  39.  
  40.  
  41. CLASS USUAGE:
  42.     The accompanying .DOC files explain how to use the 2 classes. For
  43. those of you without Word for Window, the RTF files provide another
  44. alternative. The libraries should be linked in to the Windows or DOS
  45. objs.
  46.  
  47.  
  48. DISCLAIMER:
  49.     This is industrial-strength code. There should be no bugs, but at
  50. the same time, there hasn't been much *real* testing.
  51.  
  52.  
  53. SUPPORT:
  54.     These libraries are intended to provide the programmer with a class
  55. library to iterate through files. Should questions arise, I can be reached
  56. at 72410,2521.
  57.     Since this is my first public offering, I will be very receptive
  58. any comments . . . especially criticisms.
  59.  
  60.                                         Niels Kistrup
  61.